home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000261_jaltman2@nyc.rr.com_Tue Apr 27 09:34:53 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!iad-feed.news.verio.net!newspeer1.stngva01.us.to.verio.net!news.verio.net!news.glorb.com!news3.optonline.net!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!53ab2750!not-for-mail
  2. Message-ID: <408DCFBF.6020902@nyc.rr.com>
  3. From: Jeffrey Altman <jaltman2@nyc.rr.com>
  4. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040421
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: If last word ends with '-' it gets joined with the next line
  9. References: <c6kh0p04dd@drn.newsguy.com>
  10. In-Reply-To: <c6kh0p04dd@drn.newsguy.com>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 56
  14. Date: Tue, 27 Apr 2004 03:11:00 GMT
  15. NNTP-Posting-Host: 24.193.46.55
  16. X-Complaints-To: abuse@rr.com
  17. X-Trace: twister.nyc.rr.com 1083035460 24.193.46.55 (Mon, 26 Apr 2004 23:11:00 EDT)
  18. NNTP-Posting-Date: Mon, 26 Apr 2004 23:11:00 EDT
  19. Organization: Road Runner - NYC
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14979
  21.  
  22. \-
  23.  
  24.  
  25.  
  26. Petri wrote:
  27. > Hi,
  28. > Just a quick question I hope; In the following script below, the lines "ftp site
  29. > search mypattern-" and "set ftp verbose-mode off" at the end, become joined into
  30. > "ftp site search mypatternset ftp verbose-mode off":
  31. > ---8<---
  32. > set auth ssl certs-ok
  33. > set ftp authtype ssl
  34. > set ftp autologin off
  35. > set ftp passive-mode on
  36. > set ftp filenames literal
  37. > set transfer display off
  38. > ftp myaddress myport
  39. > if fail exit 1 Remote FTP connection failed
  40. > set ftp command-protection-level private
  41. > set ftp data-protection-level private
  42. > ftp user myuser mypasswd
  43. > if fail exit 2 Remote FTP login failed
  44. > set ftp verbose-mode on
  45. > ftp site search mypattern-
  46. > set ftp verbose-mode off
  47. > exit
  48. > ---8<---
  49. > The server response is:
  50. > ---8<---
  51. > Doing case-insensitive search for 'mypatternset ftp verbose-mode off':
  52. >   
  53. > 0 directories found.
  54. > ---8<---
  55. > It indicates that "ftp site search" was executed, but not with the parameter
  56. > "mypattern-" as expected, but with "mypatternset ftp verbose-mode off" instead.
  57. > I tried getting around it by adding an empty line after the "ftp site search"
  58. > command, but that only means the search pattern changes from "mypattern-" to
  59. > "mypattern".
  60. > I assume this is a feature of some sort, but how do I disable it or get around
  61. > it?
  62. > Many thanks in advance! :)
  63. > Petri
  64.  
  65. -- 
  66. -----------------
  67. This e-mail account is not read on a regular basis.
  68. Please send private responses to jaltman at mit dot edu